 *{
     margin: 0; padding: 0; border: 0; box-sizing: border-box;
            }

body{
    background-color: #345;
    color: #EEE;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    min-height: 100svh;
    border: 4px solid grey;
}

#promotion_items, #section2 {
    border: 8px solid grey;
    min-height: 30svh;
    margin: 16px;
    position: relative;
}

.sale_item{
    width: 180px; height: 180px; 
    margin: 10px;
    display: inline-block;
}
.mens {
    background: rgb(113, 105, 255);
    transform: skewX(20deg) rotate(30deg);
    filter: grayscale(60%);
}

.womens {
    background: rgb(105, 190, 255);
    position: absolute;
    top: 10px; right: 10px;
    width: 100px; height: 100px;
}   

.kids {
    background: rgb(200, 105, 255);
}


h1{
    background-image: repeating-linear-gradient(-45deg, 
    grey 0px, 
    grey 5px, 
    #234 5px, 
    #234 40px,
    aquamarine 40px,
    aquamarine 44px);
    text-align: center;
    text-shadow: 0px 0px 4px #222;
    padding: 50px 10px;
}

#section2 {
    display: flex;
    flex-flow: row wrap;
}

#section2 div {
    width: 250px; height: 250px;
    margin: 10px;
    background-color: aquamarine;
    flex-grow: 1;
    flex-basis: 300px;
}

#section3 {
    border: 8px solid yellow;
    margin: 50px auto;
    width: 80%;
    min-height: 500px;
    position: relative;
}

#redbox {
    width: 150px; height: 150px;
    background-color: rgba(220,0,0,.5);
    border: 2px solid white;
    position: absolute;
    bottom: 100px; right: 100px;
    border-radius: 50%;
    z-index: 2;
}

#organgebox {
    width: 200px; height: 200px;
    background-color: orange;
    border: 2px solid white;
    position: absolute;
    bottom: -20px; right: -20px;
    border-radius: 50%;
    background-image: url(karl-anderson-HVGn7_dMNX0-unsplash.jpg);
    background-size: cover;
    background-position: center;
}